打电话录音 实例源码
callRecord = new CallRecord.Builder(this) .setRecordFileName("RecordFileName") .setRecordDirName("RecordDirName") .setRecordDirPath(Environment.getExternalStorageDirectory().getPath()) // optional & default value .setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB) // optional & default value .setOutputFormat(MediaRecorder.OutputFormat.AMR_NB) // optional & default value .setAudioSource(MediaRecorder.AudioSource.VOICE_COMMUNICATION) // optional & default value .setShowSeed(true) // optional & default value ->Ex: RecordFileName_incoming.amr || RecordFileName_outgoing.amr .build();callRecord.startCallReceiver();
评论